Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Other Navie capabilities such as
@contextare accessible via @ command string.Because Navie performs special processing of the code diff, such as removal of binary files, having
@diffavailable as a standalone command can be useful when building workflows using Navie.Example
$ llm -f diff.json "List URL routes impacted by the change"Based on the changes in the code, here are the URL routes that were impacted:
Primary Authentication Routes:
/login- New login endpoint for form-based authentication/logout- New logout endpointRoutes with Added Security Requirements:
/owners/**- Now requires ROLE_ADMIN/owners/new- Now requires CSRF token and ROLE_ADMIN/owners/{ownerId}/edit- Now requires CSRF token and ROLE_ADMIN/owners/{ownerId}/pets/new- Now requires CSRF token and ROLE_ADMIN/owners/{ownerId}/pets/{petId}/edit- Now requires CSRF token and ROLE_ADMIN/owners/{ownerId}/pets/{petId}/visits/new- Now requires CSRF token and ROLE_ADMINPublic Routes (Explicitly Permitted):
/- Home page/oups- Error trigger page/error- Error page/webjars/**/css/**/js/**/images/**/resources/**The changes implement Spring Security with form-based authentication and require:
The security configuration allows anonymous access to the home page and static resources while protecting sensitive operations behind authentication and proper authorization.